home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / fixpath / fixpath.doc next >
Text File  |  1996-07-10  |  7KB  |  227 lines

  1. Computer Tyme FIXPATH * Copyright 1990 by Marc Perkel
  2. All Rights Reserved * Version 1.0 * Release Date: 11-22-90
  3.  
  4. Computer Tyme * 411 North Sherman, Suite 300 * Springfield Mo. 65802
  5. (800) 548-5353 Sales * (417) 866-1222 Voice * (417) 866-1665 Data
  6.  
  7. This program reads your path environment variable and checks to
  8. verify that all referrenced directories actually exist. Any directory
  9. that doesn't exist, or is inacessable is removed from the path.
  10.  
  11. This program is particularly handy after logging off a network to
  12. avoid dos errors.
  13.  
  14. If more than one command processor is in memory, FixPath will affect
  15. only the last one.
  16.  
  17. Usage: FIXPATH
  18.  
  19. This is a shareware program. If you use it you must pay for it.
  20. Pricing is as follows:
  21.  
  22.    1         -  $10
  23.    10        -  $25
  24.    100       - $100
  25.    Unlimited - $250 call for details
  26.  
  27. This program is included free with other Computer Tyme Software
  28. such as MarxMenu and the DOS ToolBox.
  29.  
  30.  
  31.       Information and order forms:
  32.  
  33.       ======================================================
  34.  
  35.       The Computer Tyme Dos ToolBox... Makes DOS easier for the novice,
  36.       more powerful for the professional.
  37.  
  38.       DIRECTORY MASTER is a powerful hard disk managment utility. It
  39.       brings up your hard disk files and allows you to mark selected
  40.       files so you can copy them, delete them, or move them. It also
  41.       allows you to rename files, change dates, and change attributes.
  42.       You can also run programs or set up your function keys to run
  43.       programs on selected files.
  44.  
  45.       DOLIST makes being at DOS easier. It gives you full line editing,
  46.       like a word processor, for your commands. It also stores commands
  47.       so that you can re-execute them. It remembers subdirectories and
  48.       allows you to go back to them by pressing the TAB key. It offers
  49.       programmable function keys, DOS extensions, multiple execution,
  50.       and many more features you have got to have.
  51.  
  52.       PICK DIRECTORY allows you to move through the directory system by
  53.       displaying a graphic tree and letting you use your arrow keys to
  54.       move around. It also lets you create, delete, rename, and hide
  55.       directories.
  56.  
  57.       TEDIT (from SemWare) is a powerful, easy to use full screen
  58.       editor.
  59.  
  60.       MARXTSR is a set of memory and TSR management utilities that let
  61.       you load and unload TSRs (Terminate and stay resident programs)
  62.       from memory. Utilities to list menory allocation and turn TSR's
  63.       on and off.
  64.  
  65.       And many more ... Also includes is D, a fancy directory listing
  66.       program; WHEREIS, for finding stuff on you hard disk, SORT, MOVE,
  67.       FIND, FREE, PIPEDIR, VERSION, and many more.
  68.  
  69.       The Dos Toolbox sells for $59.95.
  70.  
  71.       ======================================================
  72.  
  73.       We are also selling QEdit from Semware. QEdit is a professional
  74.       editor from Semware. TEdit is a mini version of QEdit. If you
  75.       like TEdit, You'll love QEdit.
  76.  
  77.       1-800-548-5353 Order Line
  78.       1-417-866-1222 Voice Line
  79.       1-417-866-1665 BBS Data line * 1200/2400 * 8N1 * ANSI or VT100
  80.  
  81.       
  82.       MARXMENU:
  83.  
  84.       For the menu user who is interested in POWER!
  85.  
  86.       MarxMenu version 1.99 is a menu system that uses NO RAM. MarxMenu
  87.       is compatible with all networks and contains a powerful menu
  88.       language. This language gives you complete screen control as well
  89.       as conditional menus. Math and string functions as well as
  90.       multidimensional arrays are supported. MarxMenu can read
  91.       environment variables, ports, ram locations, time, dates, the
  92.       contents of text files, ect. and make decisions on them.
  93.  
  94.       Screen control includes multi-layer exploding windows with
  95.       unlimited number of selections and unlimited windows. 43/50 line
  96.       ega and vga modes are supported. MarxMenu contains a screen
  97.       blanker, password security on anything, keyboard lockout.
  98.       MarxMenu can run programs while staying resident and read the dos
  99.       errorlevel codes they return or marxmenu can return custom
  100.       errorlevel codes to a calling program or batch file. MarxMenu can
  101.       view text files in a window, read text files into an array and
  102.       let you choose a line from that array in a window. MarxMenu can
  103.       write string arrays to text files.
  104.  
  105.       This menu system is targeted at the user whose primary interest
  106.       is POWER! Here is a simple sample of what MarxMenu script looks
  107.       like:
  108.  
  109.       ==========================================
  110.  
  111.       ;This menu is a sample of a simple menu.
  112.       ;To run this menu type 'MARX SAMPLE'
  113.  
  114.       TextColor Yellow Red
  115.       ClearScreen
  116.       BoxBorderColor Green Blue
  117.       BoxInsideColor Yellow Blue
  118.       DrawBox 25 7 32 13
  119.       WriteCenter '* Sample Menu *'
  120.       Writeln
  121.       Writeln
  122.       Writeln '   A - Directory'
  123.       Writeln '   B - Wide Directory'
  124.       Writeln '   C - Run ChkDsk'
  125.       Writeln '   D - Type Menu to Screen'
  126.       Writeln '   E - Edit This Menu'
  127.       Writeln '   F - Drop to Dos'
  128.       Writeln ' Esc - Exit'
  129.       Writeln
  130.       Write ' Select: '
  131.  
  132.       OnKey 'A'
  133.          DIR
  134.          Pause   ;Lets you see the directory before screen clears
  135.  
  136.       Onkey 'B'
  137.          DIR/W
  138.          Pause
  139.  
  140.       OnKey 'C'
  141.          CHKDSK
  142.          Pause
  143.  
  144.       OnKey 'D'
  145.          TYPE SAMPLE.MNU|MORE
  146.          Pause
  147.  
  148.       OnKey 'E'
  149.          TEDIT SAMPLE.MNU
  150.  
  151.       OnKey 'F'
  152.          @Echo To Return to the SAMPLE menu type EXIT
  153.          @Echo .
  154.          COMMAND
  155.  
  156.  
  157.       MarxMenu comes with TEDIT and MARXTSR manager and a few goodies
  158.       out of the DOS ToolBox.
  159.  
  160.       ==========================================
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.         Make Check            Computer Tyme            Order Form 2.7
  174.         Payable To:    411 North Sherman Suite 300
  175.                           Springfield Mo. 65802
  176.                      (417) 866-1222  (800) 548-5353
  177.  
  178.  
  179.         Please send me the Computer Tyme Software.
  180.  
  181.         =============================================================
  182.  
  183.         Name:        ________________________________________________
  184.  
  185.         Address:     ________________________________________________
  186.  
  187.         City/St/Zip: ________________________________________________
  188.  
  189.         Phone:       ________________________________________________
  190.  
  191.         Computer:    ________________________________________________
  192.  
  193.         Got From:    ________________________________________________
  194.  
  195.         Comments:    ________________________________________________
  196.  
  197.                      ________________________________________________
  198.  
  199.                      ________________________________________________
  200.  
  201.  
  202.         ___ Enclosed is $59.95 for The DOS ToolBox.
  203.  
  204.         ___ Enclosed is $59.95 for MarxMenu.
  205.  
  206.         ___ Enclosed is $99.95 for Both.
  207.  
  208.         ___ Enclosed is $49.95 for QEdit (from SemWare).
  209.  
  210.  
  211.         Network licenses are sold on a per fileserver basis.
  212.  
  213.         ___ Enclosed is $495 for The DOS ToolBox network version.
  214.  
  215.         ___ Enclosed is $495 for MarxMenu network version.
  216.  
  217.         ___ Enclosed is $750 for Both network version.
  218.  
  219.  
  220.         ___ Add $3.00 for Shipping and Handling.
  221.  
  222.         ___ I need 3 1/2 Inch Media.
  223.  
  224.  
  225.         =============================================================
  226.  
  227.